home *** CD-ROM | disk | FTP | other *** search
- /* Example: Effectively pauses current transfers */
- /* Doesn't queue transfers that were queued before the pause */
- /* Requires rexxreqtools.library */
-
- OPTIONS RESULTS
-
- IF ~SHOW('L', 'rexxreqtools.library') THEN IF ~ADDLIB('rexxreqtools.library', 0, -30, 0) THEN DO
- SAY "Couldn't open rexxreqtools.library!"
- EXIT(10)
- END
-
- 'SELECT NONE'
- 'SELECT STARTED'
- 'STOP ALL'
-
- Dummy = rtEZRequest("Downloads paused", '_Continue', 'Pause', 'rt_reqpos=reqpos_centerscr rtez_flags=ezreqf_centertext')
-
- 'START SELECTED'
-
- /* Optionally: */
- /* 'START ALL' */
-